2005-12-02 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilesystemunix.c (get_icon_for_mime_type): Don't crash
if mime_type is NULL. (#322998, Sadrul Habib Chowdhury)
+2005-12-02 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkfilesystemunix.c (get_icon_for_mime_type): Don't crash
+ if mime_type is NULL. (#322998, Sadrul Habib Chowdhury)
+
2005-12-02 Michael Natterer <mitch@imendio.com>
* gtk/gtkmenu.c: applied modified patch from maemo-gtk which
+2005-12-02 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkfilesystemunix.c (get_icon_for_mime_type): Don't crash
+ if mime_type is NULL. (#322998, Sadrul Habib Chowdhury)
+
2005-12-02 Michael Natterer <mitch@imendio.com>
* gtk/gtkmenu.c: applied modified patch from maemo-gtk which
GString *icon_name;
GdkPixbuf *pixbuf;
+ if (!mime_type)
+ return NULL;
+
separator = strchr (mime_type, '/');
if (!separator)
return NULL; /* maybe we should return a GError with "invalid MIME-type" */